home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 8 / Revista CD Expert nº 08 CD1.iso / Utilitarios / Programacao / Bloodshed Dev-C++ 2.0 / _SETUP.1 / fixargv.h < prev    next >
C/C++ Source or Header  |  1997-12-05  |  536b  |  25 lines

  1. /*
  2.  * fixargv.h
  3.  *
  4.  * Prototypes of utility functions for 'properly' escaping argv vectors.
  5.  *
  6.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  7.  *
  8.  *  This source code is offered for use in the public domain. You may
  9.  *  use, modify or distribute it freely.
  10.  *
  11.  * $Revision: 1.1 $
  12.  * $Author: colin $
  13.  * $Date: 1997/12/05 00:31:14 $
  14.  *
  15.  */
  16.  
  17. #ifndef _FIXARGV_H_
  18. #define _FIXARGV_H_
  19.  
  20. char* fix_arg (const char* szArg);
  21. char* const* fix_argv (int argc, char* const* szaArgv);
  22. void free_fixed_argv (char* const* szaFixed, char* const* szaOld);
  23.  
  24. #endif
  25.